home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / doodle_d.swf / scripts / DefineSprite_33_en9 / frame_1 / DoAction.as
Text File  |  2013-04-24  |  1KB  |  58 lines

  1. function onEnterFrame()
  2. {
  3.    if(_root.shieldMC.hitTest(_X,_Y,true) && _root.shieldLevel >= 2)
  4.    {
  5.       dx = 0;
  6.       dy = 0;
  7.    }
  8.    _X = _X + dx;
  9.    _Y = _Y + dy;
  10.    if(_X < 0 || _X > 640)
  11.    {
  12.       dx *= -1;
  13.    }
  14.    if(_Y > 880 || _Y < 0)
  15.    {
  16.       dy *= -1;
  17.    }
  18.    if(this.hitTest(_root.ship))
  19.    {
  20.       depth = _root.getNextHighestDepth();
  21.       _root.attachMovie("exp","exp" + depth,depth);
  22.       exp = eval("_root.exp" + depth);
  23.       exp._x = _X;
  24.       exp._y = _Y;
  25.       _root.death();
  26.       _root.eAmount--;
  27.       this.removeMovieClip();
  28.    }
  29.    if(h <= 0)
  30.    {
  31.       _root.eAmount--;
  32.       _root.points += 200;
  33.       _root.eD = _root.eD + 1;
  34.       depth = _root.getNextHighestDepth();
  35.       _root.attachMovie("exp","exp" + depth,depth);
  36.       exp = eval("_root.exp" + depth);
  37.       exp._x = _X;
  38.       exp._y = _Y;
  39.       this.removeMovieClip();
  40.    }
  41. }
  42. fx = Math.floor(Math.random() * 3) - 1;
  43. if(fx == 0)
  44. {
  45.    fx = Math.floor(Math.random() * 3) - 1;
  46. }
  47. if(fx == 0)
  48. {
  49.    fx = Math.floor(Math.random() * 3) - 1;
  50. }
  51. if(fx == 0)
  52. {
  53.    fx = Math.floor(Math.random() * 3) - 1;
  54. }
  55. dx = fx * Math.random() * 8 + fx * 4;
  56. dy = Math.random() * 4;
  57. h = 10;
  58.